home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 …ember: Reference Library / Apple Developer Reference Library (December 1999) (Disk 1).iso / pc / technical documentation / develop / develop issue 28 / develop issue 28 code / sketch / source / main / documents.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-03  |  392 b   |  17 lines

  1. /****************************************************************************
  2.  * 
  3.  * Documents.h 
  4.  * 
  5.  * Public function prototypes and constants for Documents.c
  6.  * 
  7.  ****************************************************************************/
  8.  
  9. #ifndef __DOCUMENTS__
  10. #define __DOCUMENTS__
  11.  
  12. #include "Structs.h"            // for ADT types
  13.  
  14. DocumentReference        MakeNewDocument(StringPtr name);
  15.  
  16. #endif
  17.